home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / et / et-2_2.lha / et2.2 / src / PrintPort.h < prev    next >
C/C++ Source or Header  |  1990-11-28  |  425b  |  25 lines

  1. #ifndef PrintPort_First
  2. #ifdef __GNUG__
  3. #pragma once
  4. #endif
  5. #define PrintPort_First
  6.  
  7. #include "Port.h"
  8.  
  9. class PrintPort: public Port {    
  10. protected:
  11.     Rectangle bbox, pagebbox;
  12.     
  13.     void Merge(Rectangle *r);
  14.  
  15. public:
  16.     MetaDef(PrintPort);
  17.     PrintPort(char *name= 0);
  18.     void OpenPage(int pn);
  19.     void ClosePage();
  20.     virtual void DevOpenPage(int pn);
  21.     virtual void DevClosePage();
  22. };
  23.  
  24. #endif PrintPort_First
  25.